HS_DYNAMIC_FORCE_VS_START

SYNTAX:


        HS_DYNAMIC_FORCE_VS_START(VS_NOTRIGGER_MODE, START_LABEL, AWG_COUNT [, OFFSET=x]  [, WAIT=x] [, ALL_SITE_ON/FAIL_SITE_ONLY/PLAN_FAIL_SITE_ONLY]]);



        NOTE: The argument which can use _C_Variable (VS_NO, TRIGGER_PIN, START_LABEL)


DESCRIPTION:


        Setting HS VS start dynamic force voltage


REQUIRED ARGUMENT:

        PARA1: VS_NO

            HS_VS9~32 or power_source_name(string) that has been defined in the PRJ file. Or _C_Variable

        PARA2: TRIGGER_MODE

    Set the trigger mode. It can be set PTN_TRIG, BP_TRIG1~4

    PTN_TRIG: Trigger signal is from pattern Micro Instruction

                   When using dynamic force/measure with PTN_TRIG, user must define at least one IO pin of utilized dynamic resource slot in PRJ pin define table per site.

    BP_TRIG1~4: Trigger signal is from BackPlane trigger signal 1~4.       

        PARA3: START_LABEL

            Set the start address label that is defined in the AWG file for dynamic force.

            [Syntax:AWG_FILE_NAME:LABEL_NAME]

            Label name or _C_Variable 

            In awg file, the START_LABEL must be set in the first row of value.      

        PARA4: AWG_COUNT

            Set the trigger count in AWG file.  "Offset" + "AWG_Count" ≦ "Total DAC code in awg file"

            Range: 1~512



OPTIONAL ARGUMENT: 


EXAMPLE:

        HS_CLOSE_VS_OUTPUT_RELAY(HS_VS9,WAIT=3mS,ON);

      WAIT(3MS);

        HS_FORCE_VS(HS_VS9, FORCE_V, 4.9V, 5.0mA, I4);

        WAIT(1MS);       

         HS_DYNAMIC_FORCE_VS_START(HS_VS9PTN_TRIG, FORCE_AWG:START, 128);

        RUN_PATTERN(DYNAMIC_SD:ST, DYNAMIC_SD:SP, 1, 3);

        HS_DYNAMIC_FORCE_VS_STOP(HS_VS9);



        In Awg file:FORCE_AWG.awg                    In Pattern file:DYNAMIC_SD.SD                    

        AWG_TYPE = HS_VS;                                //  CCCCCCCC                                

                                                                    //  HHHHHHHH                                

                                                                    //  987654321                               

                                                                    //==============                            

        START: 4.9                                           ST:  000000001; PTN_TRIG; // VS_Dirve=4.9V

                   4.905                                               000000010;

                  4.91                                                 000000001; PTN_TRIG; // VS_Dirve=4.905V

                   4.915                                               000000010;

                   4.92                                                 000000001; PTN_TRIG; // VS_Dirve=4.91V

                  4.925                                               000000010;

                   4.93                                                 000000001; PTN_TRIG; // VS_Dirve=4.915V

                   4.935                                               000000010;

                  4.94                                                 000000001; PTN_TRIG; // VS_Dirve=4.92V

                   4.945                                         SP:  000000010;                               

                   4.95                                                 000000000;                             

        END:     5